type testing.chattyPrinter

7 uses

	testing (current package)
		testing.go#L572: type chattyPrinter struct {
		testing.go#L579: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L580: 	return &chattyPrinter{w: w, json: chatty.json}
		testing.go#L587: func (p *chattyPrinter) prefix() string {
		testing.go#L597: func (p *chattyPrinter) Updatef(testName, format string, args ...any) {
		testing.go#L611: func (p *chattyPrinter) Printf(testName, format string, args ...any) {
		testing.go#L649: 	chatty         *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.